default type(デフォルト型)
untyped constant(型付けなし定数)を、型が必要とされるshort variable declaration(短縮変数宣言)などで用いたときに暗黙的に与えられる型のこと
各種のuntyped constantとdefault typeの関係は次の通り。
untyped constant → そのdefault type と記載する:
untyped boolean → bool
untyped rune → rune
untyped integer → int
untyped floating-point → float64
untyped complex → complex128
untyped string → string